POST /rest/v1/lp-ppe-api/price-quote/addLockEvent
Authorization |
Bearer {{accessToken}}
|
|
Copy Code | |
|---|---|
{
"priceQuoteId": "{{priceQuoteId}}",
"lockId": "{{lockId}}",
"lockStatusId": "{{repriceAfterLockStatusId}}",
"userIdToUseWorseCase": "{{userId}}",
"lockEventExceptionInfo": null,
"lockEventExtensionInfo": null,
"scenario": {{scenario}},
"lockDateUpdate": null,
"hasSellSide": false,
"historicalPricing": true,
"exportAndLock": true,
"lockEventId": "{{lockEventId}}",
"lockEventComment": "Whatever comment you would like",
"overrideSetting": {
"newExtensionFee": 0,
"newConcessionFee": 0,
"newRelockFee": 0,
"newExpirationDate": null
}
} | |
|
Copy Code | |
|---|---|
curl --location -g '{{protocol}}{{domain}}/rest/v1/lp-ppe-api/price-quote/addLockEvent' \ --header 'Authorization: Bearer {{accessToken}}' \ --data '{ "priceQuoteId": "{{priceQuoteId}}", "lockId": "{{lockId}}", "lockStatusId": "{{repriceAfterLockStatusId}}", "userIdToUseWorseCase": "{{userId}}", "lockEventExceptionInfo": null, "lockEventExtensionInfo": null, "scenario": {{scenario}}, "lockDateUpdate": null, "hasSellSide": false, "historicalPricing": true, "exportAndLock": true, "lockEventId": "{{lockEventId}}", "lockEventComment": "Whatever comment you would like", "overrideSetting": { "newExtensionFee": 0, "newConcessionFee": 0, "newRelockFee": 0, "newExpirationDate": null } }' | |
This request doesn't return a response body.